ChatSentEvent

This cancellable event is called when your client sends a chat message to the server.

If cancelled, the message will not be sent, but still added to your chat history. This can be useful for making your own command system.

Constructors

Link copied to clipboard
constructor(message: String)

Properties

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard

The message that is going to be sent.